home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / StdioFileCloseProc.c < prev    next >
C/C++ Source or Header  |  1990-09-11  |  3KB  |  94 lines

  1. /* 
  2.  * StdioFileCloseProc.c --
  3.  *
  4.  *    Source code for the "StdioFileCloseProc" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/StdioFileCloseProc.c,v 1.5 90/09/11 14:27:18 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22. #include <stdlib.h>
  23. #include <errno.h>
  24. #include <unistd.h>
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * StdioFileCloseProc --
  30.  *
  31.  *    This procedure is used as the closeProc for all streams
  32.  *    that are associated with files.  It just closes the file
  33.  *    associated with the stream.
  34.  *
  35.  * Results:
  36.  *    Returns 0 if all went well, or EOF if there was an error during
  37.  *    the close operation.
  38.  *
  39.  * Side effects:
  40.  *    A file is closed.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. int
  46. StdioFileCloseProc(stream)
  47.     register FILE *stream;    /* Stream to be closed.  The clientData
  48.                  * field of the stream contains the id to
  49.                  * use when talking to the operating system
  50.                  * about the stream. */
  51. {
  52.     register FILE *prev;
  53.  
  54.     /*
  55.      * Careful!  Don't free the buffer unless we allocated it.
  56.      */
  57.  
  58.     if ((stream->buffer != stdioTempBuffer)
  59.         && (stream->buffer != stdioStderrBuffer)
  60.         && (stream->buffer != NULL)
  61.         && !(stream->flags & STDIO_NOT_OUR_BUF)) {
  62.     free((char *) stream->buffer);
  63.     stream->buffer = NULL;
  64.     stream->bufSize = 0;
  65.     }
  66.     stream->flags = 0;
  67.     stream->readCount = stream->writeCount = 0;
  68.     if (close((int) stream->clientData) != 0) {
  69.     stream->status = errno;
  70.     return EOF;
  71.     }
  72.  
  73.     /*
  74.      * Free the stream's struct unless it's one of the ones statically
  75.      * allocated for a standard channel.
  76.      */
  77.  
  78.     if ((stream != stdin) && (stream != stdout) && (stream != stderr)) {
  79.     if (stdioFileStreams == stream) {
  80.         stdioFileStreams = stream->nextPtr;
  81.     } else {
  82.         for (prev = stdioFileStreams; prev != NULL;
  83.             prev = prev->nextPtr) {
  84.         if (prev->nextPtr == stream) {
  85.             prev->nextPtr = stream->nextPtr;
  86.             break;
  87.         }
  88.         }
  89.     }
  90.     free((char *) stream);
  91.     }
  92.     return 0;
  93. }
  94.